Users

object Users : BaseTable<User>

Object representing the Users table in the database.

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val columns: List<Column<*>>
Link copied to clipboard
val email: Column<String>

the email address of the user

Link copied to clipboard
Link copied to clipboard
val id: Column<String>

the unique identifier of the user

Link copied to clipboard
val name: Column<String>

the first name of the user

Link copied to clipboard
val password: Column<String>

the password of the user

Link copied to clipboard
val primaryKeys: List<Column<*>>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val surname: Column<String>

the last name of the user

Link copied to clipboard

Functions

Link copied to clipboard
open fun aliased(alias: String): BaseTable<User>
Link copied to clipboard
open fun asExpression(): TableExpression
Link copied to clipboard
fun createEntity(row: QueryRowSet, withReferences: Boolean): User
Link copied to clipboard
operator override fun equals(other: Any?): Boolean
Link copied to clipboard
operator fun get(name: String): Column<*>
Link copied to clipboard
override fun hashCode(): Int
Link copied to clipboard
fun <C : Any> Column<C>.primaryKey(): Column<C>
Link copied to clipboard
fun <C : Any> registerColumn(name: String, sqlType: SqlType<C>): Column<C>
Link copied to clipboard
open override fun toString(): String
Link copied to clipboard
fun <C : Any, R : Any> Column<C>.transform(fromUnderlyingValue: (C) -> R, toUnderlyingValue: (R) -> C): Column<R>